home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / Symantec Support / SPM Scripts / SPMBuildResources < prev   
Encoding:
Text File  |  1996-04-03  |  1.5 KB  |  43 lines  |  [TEXT/MPS ]

  1. # SPMBuildResources
  2. # Copyright © 1995-96 by Apple Computer, Inc. All rights reserved.
  3. #
  4. #    Build the Symantec Project Manager resources for the MacApp examples. 
  5.  
  6. set targets "Calc DemoDialogs DemoText IconEdit Nothing Skeleton"
  7.  
  8. set nodebugOptions "-attachable -drag -powertalk"
  9. #set debugOptions "-attachable -drag -powertalk -debug -names -sym"
  10.  
  11. set nodebug "`mabuild -FolderName {nodebugOptions}`"
  12. #set debug "`mabuild -FolderName {debugOptions}`"
  13.  
  14. # Build the MacApp Library Resources.
  15. MABuild -RSRC {nodebugOptions} -autobuild
  16. #MABuild -RSRC {debugOptions} -autobuild
  17.  
  18. # Build the example resources.
  19. for f in {targets}
  20.     Project "SPMMacApp3.5∫Examples∫SPM {f}∫"
  21.     Directory "{MacApp}Examples:{f}:"
  22.  
  23.     CheckOut -cs "Update resource files" -m -p "{f}_nd.π.rsrc"
  24.     MABuild -rsrc {nodebugOptions} {f}
  25.     TransferCKID ":SPM {f}:{f}_nd.π.rsrc" ":{nodebug}{f}.π.rsrc"
  26.     Move -y ":{nodebug}{f}.π.rsrc" ":SPM {f}:{f}_nd.π.rsrc"
  27.     #Enable the following when the bug for checkin is fixed.
  28.     #CheckIn -cs "Updated resources from .r files." ∂
  29.     #    -t "Update resources" ∂
  30.     #    "{f}_nd.π.rsrc"
  31.  
  32.     # Enable the following when debug versions are available.
  33.     #CheckOut -cs 'Update resource files' -m -p "{f}_d.π.rsrc"
  34.     #MABuild -rsrc {debugOptions} {f}
  35.     #TransferCKID ":SPM {f}:{f}_d.π.rsrc" ":{debug}{f}.π.rsrc"
  36.     #Move -y ":{debug}{f}.π.rsrc" ":SPM {f}:{f}_d.π.rsrc"
  37.     #Enable the following when the bug for checkin is fixed.
  38.     #CheckIn -cs "Updated resources from .r files." ∂
  39.     #    -t "Update resources" ∂
  40.     #    "{f}_d.π.rsrc"
  41. end
  42.  
  43.